

/*----------------------------------------*/
/* SoulRemux CSS                          */
/*----------------------------------------*/

@font-face {
  font-family: 'Geomini';
  src: url('../fonts/Geomini/Geomini-VariableFont_wght.ttf');
}

@font-face {
	font-family: 'PlayerFont';
  src: url('../fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf');
}

body
{
  font-family: 'Geomini';
  background: #eee;
  color: #fff;
}
body {
    margin: 0;
    overflow-x: hidden;
    transition: 2s;
}

.main {
    position: relative;
    z-index: 10;
    margin-top: 50px;
    margin-bottom: 50px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.row-title
{
    font-family: 'PlayerFont';
    font-weight: 400;
    font-size: 20px;
    color: #559;
    margin-top: 30px;
    margin-bottom: 20px;
}

.card {
    background: #999;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s;
    padding: 0px;
    width: 100%;
    margin-bottom: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.card:hover {
    transform: scale(1.03);
}

.card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* ACTIVE TRACK */
.card.active {
    outline: 2px solid #4aa3ff;
}

video
{
    width: 1750px;
    height: 1000px;
}

#videoPlayer {
    display: none;
    position: absolute;
    z-index: 10;
    top: 100px;
    left: 400px;
    right: 0px;
    bottom: 200px;
    object-fit: fill;
    border: 4px solid #333;
}

.videocard {
    background: #999;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s;
    padding: 0px;
    width: 100%;
    height: 160px;
    margin-bottom: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.videocard:hover {
    transform: scale(1.03);
}

.videocard img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* ACTIVE TRACK */
.videocard.active {
    outline: 2px solid #4aa3ff;
}



/* PLAYER BAR */
.player {

    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    bottom: -120px;

    background: #181818;
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 10px 15px;
    transition: 0.2s;

    z-index: 10;
}

.player img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
}

.player-info {
    flex: 1;
}

.progress {
    
    height: 4px;
    background: #333;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #4aa3ff;
}
.section-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.section-intro.open {
    pointer-events: none;
}

/* after open → becomes invisible to clicks */
.door.open {
    pointer-events: none;
}

.title
{
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

#pTitle
{
    display: inline-block;
	font-family: 'PlayerFont';
	margin-bottom: 10px;
}
#duration
{
    display: inline-block;
    float: right;
    font-family: 'PlayerFont';
    margin-bottom: 10px;
}

.waveform {
    position: relative;
    width: 100%;
    height: 40px;
    cursor: pointer;
    overflow: hidden;
}

#waveImg
{
	opacity: 0.5;
}

/* overlay fill effect */

#waveContainer {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#waveImg
{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0 !important;
    top: 0px;
}

#waveProgress
{
    position: absolute;
    width: 3px;
    height: 100px;
    color: #fff;
    left: 0;
    top: -5;
    bottom: -5;
    border-left: 3px solid #77f;
}

.title, .card
{
    display: inline-block;
}

.added
{
	color: #333;
	font-size: 10px;
    opacity: 0;
    transition: opacity 0.5s;
}

.togglePlay
{
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #fff;
    font-size: 30px;
}